home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d1 / batchlrn.arc / REM.HLP < prev    next >
Text File  |  1991-06-17  |  2KB  |  24 lines

  1. |---------------B A T C H L R N  H E L P  S Y S T E M-----------------|
  2. |command: REMark                                                      |
  3. |use: The REM command displays on the CRT screen any text that is on  |
  4. | the same line as the REM cmd.when a batch processing file is running|
  5. |how:Type:(in a batch processing file) REM <comment or message>       |
  6. |actual batch file: REM This file checks new disks                    |
  7. |                   REM It is named MAKEDISK.BAT                      |
  8. |                   PAUSE Insert new disk in drive B:                 |
  9. |                   FORMAT B:/S                                       |
  10. |                   CHKDSK B:                                         |
  11. |NOTES: REMark can be used to send messages to the screen or simply   |
  12. | to document some part of your batch file's operation. REM won't work|
  13. | with ECHO! We prefer REM ONLY for short files. The computer opera-  |
  14. | tor(it won't always be you)will want to know what is happening.Also,|
  15. | after some time,you may forget what a complicated set of commands   |
  16. | actually does. REM messages can be up to 123 characters long,but DO |
  17. | keep the width of the screen in mind. This way you can control the  |
  18. | display and make it even more meaningful. CENTER remarks when you   |
  19. | can. ALL of the foregoing of course also applies to ECHO messages.  |
  20. | If a line in a batch file starts with one or more periods (.) it is |
  21. | treated as a remark (in DOS 2.xx, DOS 3.x won't allow this). THUS   |
  22. | REM This is a test  a-n-d  . This is a test are treated equally.    |
  23. |----------------- T  I  M  E  M  A  S  T  E  R  ---------------------|
  24.